home *** CD-ROM | disk | FTP | other *** search
/ 10,000 Great Games / 10,000 Great Games.iso / Product / 66 / data1.cab / Source_Files / Src / Level.cpp < prev    next >
C/C++ Source or Header  |  2000-01-16  |  468b  |  27 lines

  1. #include "stdafx.h"
  2.  
  3. #include <string.h>
  4.  
  5. cLevel *level = 0;
  6.  
  7. cLevel::cLevel()
  8. {     
  9. }
  10.  
  11. cLevel::~cLevel()
  12. {
  13. }
  14.  
  15. void cLevel::make(cParse *props)
  16. {
  17.     if (props->get_int("VERSION", 0) > LEVEL_VERSION && inawin)
  18.         info("This level was created by a newer version of Blaster Disaster!\n\n"
  19.              "Trying to load the level anyway...");
  20. }
  21.  
  22. void cLevel::save()
  23. {
  24.     save_level_string("TYPE", "BLASTER LEVEL");
  25.     save_level_int("VERSION", LEVEL_VERSION);
  26. }
  27.